/* ==========================================================================
   Parallax Starter - Free HTML CSS Template
   
TemplateMo 612 Parallax Starter

https://templatemo.com/tm-612-parallax-starter

   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --nav-bg: rgba(0, 0, 0, 0.25);
    --nav-bg-scrolled: rgba(0, 0, 0, 0.85);
    --transition-smooth: 0.3s ease;

    /*--------------------- */
    --bg-primary: #0a0f1c;
    --bg-surface: #111827;
    --bg-card: #1a2236;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-blue: #1F6FD6;
    --accent-green: #57B847;
    --gradient: linear-gradient(90deg, #1F6FD6, #57B847);
    --glow-blue: rgba(31, 111, 214, 0.3);
    --glow-green: rgba(87, 184, 71, 0.3);

}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* --- Whats app css start --- */
.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    line-height: 60px;
    box-shadow: 2px 2px 10px rgba(0,0,0,.3);
    z-index: 9999;
    transition: .3s;
}

.whatsapp-float:hover{
    transform: scale(1.1);
    color: #fff;
}
/* --- Whats app css end --- */

/* --- Navigation --- */
/* #templatemo-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--transition-smooth);
} */

#templatemo-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 60%;
    left: 20%;
    z-index: 1000;
    background: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--transition-smooth);
    border-radius: 20px;
    margin-top: 20px;
}

#templatemo-nav.scrolled {
    background: floralwhite;
}
.login-button{
    background: linear-gradient(90deg,#1F6FD6,#57B847);
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 14px !important;
    font-weight: 800 !important;
}
.get-started{
    background: linear-gradient(90deg,#1F6FD6,#57B847);
    border-radius: 30px;
    padding: 12px 28px;
    letter-spacing: 2px;
}
#home a{
    margin: 0 10px 0 10px;
}
.try-demo{
    border-radius: 40px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.nav-container img{
    height: auto;
    width: 135px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: #000;
    transition: color var(--transition-smooth), opacity var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: #1F6FD6;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 5px;
    border-radius: 15px;
    transition: all var(--transition-smooth);
}

/* --- Parallax Sections --- */
.parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Parallax Background Image Layer
   Height is 200% and starts at top: -50% to give
   maximum room for large vertical translations */
.parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
    filter: blur(5px);
}

/* Dark Overlay */
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.parallax-overlay.overlay-dark {
    background: rgba(0, 0, 0, 0.55);
}

.parallax-overlay.overlay-medium {
    background: rgba(0, 0, 0, 0.50);
}

/* Content Layer */
.section-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    padding: 100px 30px;
    text-align: center;
}
.about-section-content{
    position: relative;
    z-index: 2;
    /* max-width: 960px; */
    width: 100%;
    padding: 100px 30px;
    text-align: center;
}

/* --- Typography --- */
.section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title {
    font-weight: 400;
    letter-spacing: 12px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.6vw, 16px);
    letter-spacing: 4px;
    color: var(--white-70);
    margin-bottom: 40px;
    font-weight: 700;
}

.caps {
    text-transform: uppercase;
}

.content-block {
    max-width: 680px;
    margin: 0 auto;
}

.content-block p {
    font-size: 17px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 700;
}

/* --- Hero Button --- */
.btn-scroll {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--white);
    border: 1px solid var(--white-40);
    padding: 12px 28px;
    transition: all var(--transition-smooth);
}

.btn-scroll:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

/* --- About Columns --- */
.unsplash-credit {
    font-size: 14px;
    color: var(--white-40);
    margin-top: 25px;
    letter-spacing: 1px;
}

.unsplash-credit a {
    color: var(--white-70);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    /* max-width: 900px; */
    margin: 0 auto;
    text-align: left;
}

.about-col {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-thumb {
    overflow: hidden;
    width: 120px;
    height: 120px;
    border-radius: 8px;
}

.about-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-top-left {
    float: left;
    margin: 0 20px 15px 0;
}

.about-thumb-wide {
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 2 / 1;
    border-radius: 8px;
    margin-bottom: 20px;
}

.about-thumb-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-col p {
    font-size: 16px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

.about-col p:last-child {
    margin-bottom: 0;
}

.about-col a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
}

.service-icon {
    margin-bottom: 20px;
    opacity: 0.85;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: var(--white);
}

.service-item p {
    font-size: 12px;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.9;
}

/* --- Stats Row --- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid var(--white-20);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--white-70);
}

.about-left-image img{
    border-radius: 20px;
}
.about-text p{
    text-align: left;
    font-size: 24px;
    padding: 0 40px 0 40px;
    line-height: 1.3;
    margin-bottom: 15px;
}
/* --- Contact Form --- */
.contact-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--white-20);
    padding: 16px 20px;
    outline: none;
    transition: border-color var(--transition-smooth);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--white-40);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--white-70);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white-40);
    padding: 16px 45px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    align-self: flex-start;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

/* --- Footer --- */
#templatemo-footer {
    background: #111;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    color: var(--white-40);
    letter-spacing: 1px;
}

#templatemo-footer a {
    color: #fff;
    transition: color var(--transition-smooth);
}

#templatemo-footer a:hover {
    color: var(--white);
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Timeline */
    .gradient-text {
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
        .timeline {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: calc(100% - 180px);
            background: linear-gradient(to bottom, var(--accent-blue), var(--accent-green));
            top: 60px;
            opacity: 0.3;
        }
        .step {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards;
        }
        .step:nth-child(1) { animation-delay: 0.1s; }
        .step:nth-child(2) { animation-delay: 0.2s; }
        .step:nth-child(3) { animation-delay: 0.3s; }
        .step:nth-child(4) { animation-delay: 0.4s; }
        .step:nth-child(5) { animation-delay: 0.5s; }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .step:nth-child(even) {
            flex-direction: row-reverse;
        }
        .step:nth-child(even) .step-content {
            text-align: right;
        }
        .step-marker {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Geist', sans-serif;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--text-primary);
        }
        .step-marker::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            background: var(--gradient);
            z-index: -1;
        }
        .step-marker::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: var(--bg-card);
            z-index: -1;
        }
        .step-content {
            flex: 1;
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 28px;
            position: relative;
        }
        .step-content::before {
            content: '';
            position: absolute;
            top: 20px;
            width: 12px;
            height: 12px;
            background: var(--bg-card);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-right: 1px solid rgba(255, 255, 255, 0.06);
            transform: rotate(45deg);
        }
        .step:nth-child(odd) .step-content::before {
            left: -7px;
        }
        .step:nth-child(even) .step-content::before {
            right: -7px;
            transform: rotate(-135deg);
        }
        .step-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(31, 111, 214, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        .step-icon svg {
            width: 22px;
            height: 22px;
            color: #fff;
        }
        .step h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--text-primary);
        }
        .step p {
            color: var(--text-secondary);
            font-size: 20px;
            line-height: 1.5;
        }
        .step-number {
            position: absolute;
            top: -10px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #000;
            background: rgb(87 184 71);
            padding: 4px 12px;
            border-radius: 100px;
            border: 1px solid rgba(87, 184, 71, 0.2);
        }
        .step:nth-child(odd) .step-number {
            right: 20px;
        }
        .step:nth-child(even) .step-number {
            left: 20px;
        }

                /* Responsive */
        @media (max-width: 640px) {
            .timeline::before {
                left: 45px;
                top: 70px;
                height: calc(100% - 415px);
            }
            .step,
            .step:nth-child(even) {
                flex-direction: row;
            }
            .step-marker {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }
            .step-content {
                padding: 20px;
            }
            .step:nth-child(even) .step-content,
            .step-content {
                text-align: left;
            }
            .step:nth-child(odd) .step-content::before,
            .step:nth-child(even) .step-content::before {
                left: -7px;
                transform: rotate(45deg);
            }
            .step:nth-child(odd) .step-number,
            .step:nth-child(even) .step-number {
                right: 20px;
                left: auto;
            }
        }
        /* Timeline */

        /* Demo Card CSS start */
        /* Responsive Grid */
        .qr-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 24px;
        max-width: 1200px;
        margin: auto;
        }

        /* Card */
        .qr-card {
        position: relative;
        aspect-ratio: 1;
        padding: 3px;
        border-radius: 12px;
        background: linear-gradient(90deg, #1F6FD6, #57B847);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        /* White Inner Area */
        .qr-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #fff;
        border-radius: 10px;
        padding: 12px;
        display: block;
        }

        /* Center Badge */
        .qr-badge {
        display: none;
        position: absolute;
        inset: 50% auto auto 50%;
        transform: translate(-50%, -50%);

        width: clamp(90px, 35%, 130px);
        aspect-ratio: 1;

        border-radius: 50%;
        background: #0c0c0c;
        color: #fff;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        text-align: center;
        padding: 10px;
        }

        .qr-badge span {
        font-size: clamp(10px, 1vw, 14px);
        font-weight: 600;
        letter-spacing: 1px;
        }

        .qr-badge h3 {
        margin-top: 4px;
        font-size: clamp(14px, 1.5vw, 24px);
        font-weight: 700;
        line-height: 1.1;
        }

        /* Mobile */
        @media (max-width: 576px) {
        .qr-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .qr-card {
            max-width: 320px;
            margin: auto;
        }
        }
            /* Demo Card CSS start */

/* ===================Login Modal BOX start================== */

    /* LOGIN BUTTON */
    .login-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #2563eb;
        color: white;
        padding: 8px 16px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
    }

    /* MODAL BACKGROUND */
    .modal {
        display: none;
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(6px);
        justify-content: center;
        align-items: center;
    }

    /* MODAL BOX */
    .modal-content {
        background: #111827;
        padding: 30px;
        border-radius: 16px;
        width: 100%;
        max-width: 400px;
        color: white;
        animation: fadeIn 0.3s ease;
        box-shadow: 0 0 40px rgba(0,0,0,0.6);
        border: 1px solid;
    }

    /* CLOSE BUTTON */
    .close {
        float: right;
        font-size: 22px;
        cursor: pointer;
    }

    /* TITLE */
    .modal-content h2 {
        margin-bottom: 5px;
    }

    .subtitle {
        font-size: 13px;
        color: #9ca3af;
        margin-bottom: 20px;
    }

    /* INPUTS */
    .input-group {
        margin-bottom: 15px;
    }

    .input-group input {
        width: 100%;
        padding: 12px;
        border-radius: 10px;
        border: none;
        background: #1f2937;
        color: white;
        font-size: 14px;
    }

    /* OPTIONS */
    .options {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .options a {
        color: #60a5fa;
        text-decoration: none;
    }

    /* BUTTON */
    .login-submit {
        width: 100%;
        padding: 12px;
        border-radius: 10px;
        border: none;
        background: #2563eb;
        color: white;
        font-weight: 600;
        cursor: pointer;
    }

    .login-submit:hover {
        background: #1d4ed8;
    }
    .header-login-btn{
        cursor: pointer;
    }

    .spinner {
        width: 14px;
        height: 14px;
        border: 2px solid white;
        border-top: 2px solid transparent;
        border-radius: 50%;
        display: inline-block;
        animation: spin 0.6s linear infinite;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    z-index: 999;
    }

    .modal-content {
        background: #111827;
        padding: 25px;
        border-radius: 16px;
        width: 100%;
        max-width: 380px;
        color: #fff;
    }

    .tabs {
        display: flex;
        margin-bottom: 15px;
    }

    .tab {
        flex: 1;
        padding: 10px;
        background: #1f2937;
        border: none;
        color: #9ca3af;
        cursor: pointer;
    }

    .tab.active {
        background: #2563eb;
        color: #fff;
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    input {
        width: 100%;
        padding: 10px;
        margin-bottom: 8px;
        border-radius: 8px;
        border: none;
        background: #1f2937;
        color: #fff;
    }

    button {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: none;
        background: #2563eb;
        color: #fff;
        cursor: pointer;
    }

    .error {
        color: #f87171;
        font-size: 12px;
    }

    .success {
        color: #34d399;
        font-size: 12px;
    }

/* ===================Login Modal BOX End==================== */

/* ===================================
   Responsive
   =================================== */
   @media (max-width: 1270px) {
        #templatemo-nav {
            position: fixed;
            width: 80%;
            left: 10%;
            right: 10%;
       }
   }

    @media (max-width: 991px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .stats-row {
            gap: 40px;
        }

    }

    @media screen and (min-width: 768px) and (max-width: 960px) {
        #templatemo-nav {
            position: fixed;
            width: 90%;
            left: 5%;
            right: 5%;
        }

        .login-button{
            padding: 10px 10px;
        }
        .nav-links{
            gap: 25px;
        }
    }

    @media (max-width: 768px) {

            /* Mobile Navigation */
        .nav-toggle {
            display: flex;
            align-items: center;
        }

        .nav-links {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 30px;
            padding: 100px 30px 60px;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .nav-links.open {
            opacity: 1;
            visibility: visible;
        }

        .nav-links a {
            font-size: 16px;
            letter-spacing: 4px;
            color: #fff;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Disable parallax on mobile — static bg */
        .parallax-bg {
            top: 0;
            height: 100%;
        }

        .section-title {
            letter-spacing: 4px;
        }

        .hero-title {
            letter-spacing: 6px;
        }

        .section-subtitle {
            letter-spacing: 2px;
        }

        .services-grid {
            grid-template-columns: 1fr;
            gap: 35px;
        }

        .about-cols {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }

        .stats-row {
            flex-direction: column;
            gap: 30px;
        }

        .form-row {
            flex-direction: column;
        }

        .btn-submit {
            align-self: stretch;
        }
        .nav-toggle span{
            background-color: #000;
        }
        .about-text p {
            text-align: left;
            font-size: 16px;
            padding: 0 5px 0 5px;
            line-height: 1.3;
            margin-bottom: 15px;
        }
    }

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .section-content {
        padding: 80px 20px;
    }

    .section-title {
        letter-spacing: 3px;
    }

    .content-block p {
        font-size: 15px;
    }

    .stat-number {
        font-size: 34px;
    }
    .btn-scroll {
       padding: 12px 10px;
    }
    .get-started{
        padding: 12px 10px;
    }
}
